home *** CD-ROM | disk | FTP | other *** search
/ Aminet 43 / Aminet 43 (2001)(GTI - Schatztruhe)[!][Jun 2001].iso / Aminet / misc / edu / DIGIOchmann09.lha / OchmannInstall / Install DIGIOchmann < prev    next >
Text File  |  2001-04-11  |  2KB  |  105 lines

  1. (welcome "Copyright © 2001 Peter d'Alancaisez & Adalbert Jahnz.\n\n"
  2.      "Welcome to DIGIOchmannumérique!\n\n"
  3.      "Please note that you need AmigaOS 3.0 or better and the AGA chipset "
  4.      "to use this programme.")
  5.  
  6. (if (< @user-level 1)
  7.     (abort  "Please set your user level to INTERMEDIATE to proceed with the "
  8.         "installation.")
  9. )
  10.  
  11. (complete 0)
  12.  
  13. (set #dest
  14.     (askdir
  15.         (prompt "Where do you want to install the DIGIOchmann executable and "
  16.             "documentation?\n"
  17.             "No new directory will be created.")
  18.         (help @askfile-help)
  19.         (default @default-dest)
  20.         (disk)
  21.     )
  22. )
  23.  
  24. (set #files
  25.     (askdir
  26.         (prompt "Where do you want to put DIGIOchmann data files?\nI will "
  27.             "create a directory of that name if it does not exist.")
  28.         (help @askfile-help)
  29.         (newpath)
  30.         (default (tackon #dest "Files"))
  31.     )
  32. )
  33.  
  34. (makedir #files
  35.     (prompt "Creating the files directory.")
  36. )
  37.  
  38. (copyfiles 
  39.     (prompt "Installing the necessary fonts.")
  40.     (help @copyfiles-help)
  41.     (source "Fonts")
  42.     (dest "FONTS:")
  43.     (pattern "#?")
  44.     (fonts)
  45. )
  46.  
  47. (complete 20)
  48.  
  49. (copyfiles
  50.     (prompt "Copying the executable.")
  51.     (help @copyfiles-help)
  52.     (source "ochmannumérique")
  53.     (dest #dest)
  54.     (infos)
  55.     (noposition)
  56. )
  57.  
  58. (complete 60)
  59.  
  60. (copyfiles
  61.     (prompt "Copying the documentation.")
  62.     (help @copyfiles-help)
  63.     (source "Docs")
  64.     (dest #dest)
  65.     (infos)
  66.     (noposition)
  67.     (confirm)
  68.     (pattern "#?")
  69. )
  70.  
  71. (complete 70)
  72.  
  73. (copyfiles
  74.     (prompt "Copying the language files.")
  75.     (help @copyfiles-help)
  76.     (source "Locale")
  77.     (pattern "#?.digilang")
  78.     (dest #files)
  79. )
  80.  
  81. (complete 80)
  82.  
  83. (startup "Ochmannumérique"
  84.     (prompt "Some instructions need to be added to the "
  85.         "\"S:user-startup\" so that your system will "
  86.         "be properly configured to use DIGIOchmann.")
  87.     (help     ("Please note that if you are using MCP, AssignPrefs or a similar assign manager programme, you can skip this part and then manually assign OCHMANN: to %s." #files))
  88.     (command ("Assign OCHMANN: %s" #files))
  89. )
  90.  
  91. (complete 90)
  92.  
  93. (run "FixFonts"
  94.     (prompt "Running the FixFonts utility so that the OS can see the new fonts"
  95.         "installed.")
  96.     (confirm)
  97.     (help "No help is available, sorry.")
  98. )
  99.  
  100. (makeassign "OCHMANN" #files)
  101.  
  102. (complete 100)
  103.  
  104. (message "You can now click on the Ochmannumérique icon to start the programme.")
  105.